Errors and Warnings

There are many types of errors you will encounter while programming and running your creations, but they fall into four main categories:

'SYNTAX ERROR'
ans you have tried to compile your program but a command statement was not recognized or understood.

'PARAMETER MISMATCH'
ans you have tried to compile your program but a known command has been given the wrong parameter data. You must provide the correct types of parameters for the command, and in the right order.

'RUNTIME WARNING'
ans the program has compiled and run successfully, but the command failed due to the reasons given with the warning. A warning will not be given in a standalone executable version of the program!

'RUNTIME ERROR'
ans the program has compiled and run successfully, but the command failed due to the reasons given with the error. An error will terminate a standalone executable version of the program and provide a reason for the error!